home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
BG_SRC.ZIP
/
COMP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-21
|
518b
|
27 lines
/*
* This file should be the first include file in all c sources where
* defines change from compiler to compiler
*/
/* Only one of the following defines should be 1 */
#define MIX_C 0
#define MS_C 0
#define TURBO_C 1
#if MIX_C
#include <graphics.h>
#elif MS_C
#include <graph.h>
#elif TURBO_C
#include <graphics.h>
#endif
#if MIX_C
#define SCREEN_DEF_MODE DEFAULTMODE
#elif MS_C
#define SCREEN_DEF_MODE _DEFAULTMODE
#elif TURBO_C
#define SCREEN_DEF_MODE _DEFAULTMODE
#endif